Skip to content

feat!: remove @vue/devtools integration - #1056

Merged
antfu merged 1 commit into
mainfrom
chore/remove-vue-devtools-integration
Aug 4, 2026
Merged

feat!: remove @vue/devtools integration#1056
antfu merged 1 commit into
mainfrom
chore/remove-vue-devtools-integration

Conversation

@antfubot

@antfubot antfubot commented Aug 4, 2026

Copy link
Copy Markdown
Collaborator

Summary

Vue DevTools is being refactored onto Vite DevTools too, so it can be added as a lightweight, independent plugin instead of being bundled (and rebuilt) inside Nuxt DevTools. This removes that integration and its dependency footprint, making Nuxt DevTools quite a lot thinner.

Removed:

  • The Render Tree and Pinia tabs (both embedded @vue/devtools-applet components) and their shared client-side RPC bootstrap
  • The server-side vue-devtools integration that injected the @vue/devtools-kit RPC server plugin, and the iframe-binding glue that fed its messaging channel
  • The vueDevTools module option and the vue-devtools tab category
  • The tab-pinia playground and its e2e spec, which existed solely to exercise the now-removed Pinia tab
  • @vue/devtools-core, @vue/devtools-kit, @vue/devtools-applet dependencies and their catalog entries, plus the cypress/pinia/@pinia/nuxt/@exampledev/new.css catalog entries that were only used by the deleted playground

Verified pnpm lint, pnpm typecheck, pnpm knip, and pnpm test:unit all pass (knip findings are a strict subset of what a clean checkout of main already reports).


This PR was created with the help of an agent.

Vue DevTools is being refactored onto Vite DevTools too, so it can be
added as a lightweight, independent plugin rather than bundled and
rebundled inside Nuxt DevTools. Removes the Pinia and Render Tree tabs
(both @vue/devtools-applet embeds), their RPC bridge
(@vue/devtools-core/@vue/devtools-kit), the vueDevTools module option,
and the tab-pinia playground/e2e spec that only existed to exercise
those tabs. Cleans up the now-unused @vue/devtools* and tab-pinia-only
(cypress/pinia/@exampledev) catalog entries.

Co-authored-by: opencode <noreply@opencode.ai>
@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying nuxt-devtools with  Cloudflare Pages  Cloudflare Pages

Latest commit: 55cbcd0
Status: ✅  Deploy successful!
Preview URL: https://7e5de0fc.nuxt-devtools.pages.dev
Branch Preview URL: https://chore-remove-vue-devtools-in.nuxt-devtools.pages.dev

View logs

@coderabbitai

coderabbitai Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 7781c498-ccb5-4e75-9fe5-125cab413ac6

📥 Commits

Reviewing files that changed from the base of the PR and between d85c2b3 and 55cbcd0.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (32)
  • knip.jsonc
  • packages/devtools-kit/src/_types/common.ts
  • packages/devtools-kit/src/_types/options.ts
  • packages/devtools/client/app.vue
  • packages/devtools/client/composables/state-tabs.ts
  • packages/devtools/client/nuxt.config.ts
  • packages/devtools/client/pages/modules/pinia.vue
  • packages/devtools/client/pages/modules/render-tree.vue
  • packages/devtools/client/plugins/vue-devtools.ts
  • packages/devtools/client/setup/vue-devtools.ts
  • packages/devtools/package.json
  • packages/devtools/src/integrations/vue-devtools.ts
  • packages/devtools/src/module-main.ts
  • packages/devtools/src/runtime/plugins/view/client.ts
  • packages/devtools/src/runtime/vue-devtools-client.ts
  • playgrounds/tab-pinia/.npmrc
  • playgrounds/tab-pinia/app.vue
  • playgrounds/tab-pinia/assets/main.css
  • playgrounds/tab-pinia/components/PiniaLogo.vue
  • playgrounds/tab-pinia/directives/focus.ts
  • playgrounds/tab-pinia/layouts/default.vue
  • playgrounds/tab-pinia/modules/custom-module/index.ts
  • playgrounds/tab-pinia/modules/custom-module/runtime/server/api/hello.ts
  • playgrounds/tab-pinia/modules/pinia-nuxt5-compat.ts
  • playgrounds/tab-pinia/nuxt.config.ts
  • playgrounds/tab-pinia/package.json
  • playgrounds/tab-pinia/pages/index.vue
  • playgrounds/tab-pinia/stores/counter.ts
  • playgrounds/tab-pinia/tsconfig.json
  • pnpm-workspace.yaml
  • tests/e2e/playwright.config.ts
  • tests/e2e/specs/playground-tab-pinia.spec.ts
💤 Files with no reviewable changes (28)
  • playgrounds/tab-pinia/assets/main.css
  • packages/devtools/package.json
  • playgrounds/tab-pinia/modules/custom-module/index.ts
  • playgrounds/tab-pinia/.npmrc
  • playgrounds/tab-pinia/package.json
  • packages/devtools/src/integrations/vue-devtools.ts
  • packages/devtools/src/runtime/vue-devtools-client.ts
  • packages/devtools-kit/src/_types/common.ts
  • packages/devtools/client/app.vue
  • playgrounds/tab-pinia/app.vue
  • packages/devtools/client/pages/modules/pinia.vue
  • playgrounds/tab-pinia/layouts/default.vue
  • playgrounds/tab-pinia/tsconfig.json
  • playgrounds/tab-pinia/modules/custom-module/runtime/server/api/hello.ts
  • playgrounds/tab-pinia/modules/pinia-nuxt5-compat.ts
  • playgrounds/tab-pinia/stores/counter.ts
  • playgrounds/tab-pinia/directives/focus.ts
  • tests/e2e/specs/playground-tab-pinia.spec.ts
  • packages/devtools/client/nuxt.config.ts
  • packages/devtools/client/setup/vue-devtools.ts
  • packages/devtools-kit/src/_types/options.ts
  • playgrounds/tab-pinia/components/PiniaLogo.vue
  • playgrounds/tab-pinia/pages/index.vue
  • playgrounds/tab-pinia/nuxt.config.ts
  • packages/devtools/client/plugins/vue-devtools.ts
  • pnpm-workspace.yaml
  • packages/devtools/client/pages/modules/render-tree.vue
  • packages/devtools/src/runtime/plugins/view/client.ts

📝 Walkthrough

Walkthrough

The change removes Vue DevTools integration, categories, dependencies, iframe binding, and related configuration. It removes the Pinia playground and its E2E coverage. Workspace catalogs no longer include Vue DevTools, Pinia, the playground catalog, or Cypress entries.

Estimated code review effort: 3 (Moderate) | ~20 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the primary change: removing the Vue DevTools integration.
Description check ✅ Passed The description directly explains the removed integration, dependencies, tabs, playground, tests, and related cleanup.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/remove-vue-devtools-integration

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@antfu
antfu merged commit a1c923d into main Aug 4, 2026
4 of 6 checks passed
@antfu
antfu deleted the chore/remove-vue-devtools-integration branch August 4, 2026 01:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants